home *** CD-ROM | disk | FTP | other *** search
/ Windows 6-Pak - Disc 5 / Windows 6-Pak (InfoMagic) (Disc 5) (1999).ISO / Misc-Programming-Tools / regen01.exe / SOURCE.ZIP / regenum.dpr < prev    next >
Text File  |  1998-09-02  |  382b  |  18 lines

  1. program regenum;
  2.  
  3. uses
  4.   Forms,
  5.   main in 'main.pas' {Form1},
  6.   about in 'about.pas' {AboutBox},
  7.   OkCancl2 in 'D:\APPS\DELPHI 2.0\OBJREPOS\OKCANCL2.pas' {OKRightDlg};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.Title := 'Registry enumerator';
  14.   Application.HelpFile := 'regenum.hlp';
  15.   Application.CreateForm(TForm1, Form1);
  16.   Application.Run;
  17. end.
  18.